home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / tkern10.zip / INCLUDE\SYS\TYPES.H < prev    next >
Text File  |  1994-07-15  |  305b  |  17 lines

  1. #ifndef __TYPES_H
  2. #define __TYPES_H
  3.  
  4. #ifndef __TIME_T
  5. #define __TIME_T
  6. typedef long time_t;
  7. #endif /* __TIME_T */
  8. typedef short dev_t;
  9. typedef short ino_t;
  10. typedef short mode_t;
  11. typedef short nlink_t;
  12. typedef int   uid_t;
  13. typedef int   gid_t;
  14. typedef long  off_t;
  15.  
  16. #endif /* __TYPES_H */
  17.